home *** CD-ROM | disk | FTP | other *** search
/ Software Vault: The Diamond Collection / The Diamond Collection (Software Vault)(Digital Impact).ISO / cdr13 / see320.zip / SEESAMPL.MNU < prev    next >
Text File  |  1995-02-01  |  4KB  |  81 lines

  1. ; For a detailed explanation of MNU files, see the file SEE.MNU, included
  2. ; in the standard SEE package.  This MNU file demonstrates the following:
  3. ;
  4. ; ■ Disabling the pull-down menu
  5. ; ■ Eliminating unwanted functions
  6. ; ■ Defining alternative bottom lines
  7. ;
  8. ; To disable access to the pull-down menu, you must set the Key1 and Key2
  9. ; for SELECT to 0.  You must also set Key1 and Key2 for the menu shortcut
  10. ; keys to 0.
  11. ;
  12. ; To eliminate functions from the file, you can comment them out with a
  13. ; semi-colon, or simply delete them.  In the example below, we have created
  14. ; a false pull-down menu named "Everything".  The user will never see it,
  15. ; because there is no way to pop up the menu.  However, the functions listed
  16. ; are still available through their shortcut keys (Key1 and Key2).
  17. ;
  18. ;Description/KeyName1          KeyName2 Key1 Key2 Token
  19. ;───────────────────────────── ──────── ──── ──── ─────
  20.  
  21. SELECT XXX                                 0    0    a
  22.  
  23. \Everything         |                      0    0    -
  24. eXit            AltX|           AltQ     173  144    z
  25. Search          AltS|                    159    0    g
  26. search from tOp AltO|           AltO     152    0    O
  27. search preVious AltV|           AltV     175    0    V
  28. Again             F3|                    189  158    h
  29. again prEvious    F4|           AltB     190  176    K
  30. Last find       Alt@|                    249    0    L
  31. Line #          AltL|                    166    0    o
  32. Start        CtlHome|                    247    0    p
  33. End           CtlEnd|                    245    0    q
  34. Top left        Home|                    199    0    r
  35. Bot. left        End|                    207    0    s
  36. page Up         PgUp|                    201    0    G
  37. page Down       PgDn|                    209    0    I
  38. Quit@end       Space|                     32  130    H
  39. Ruler             F2|           AltR     188  147    u
  40.  
  41. ;
  42. ; Bottom Line Definitions
  43. ; -----------------------
  44. ;
  45. ; The following section defines bottom "help" lines (which appear on the
  46. ; last line of the main viewing screen).  If these appear here, they
  47. ; override the bottom lines that appear in the CFG file (as configured
  48. ; via the SEESETUP program).  You can override one, two or three (i.e. all)
  49. ; of the bottom line definitions.  These will also override the default
  50. ; definitions that are used if the CFG file is missing.
  51. ;
  52. ; BLTOP sets the line displayed at the top of the file
  53. ; BLEND sets the line displayed at the end of the file
  54. ; BLMID sets the line displayed in between
  55. ; BLALL sets the line displayed when the entire file fits on one screen
  56. ;
  57. ; You can use {symbols}, just as you do when defining the bottom lines in
  58. ; the SEESETUP program.  For example:
  59. ;
  60. ; {24} = Up arrow  {25} = Down arrow  {27} = Left arrow  {28} = Right arrow
  61. ;
  62. ; The maximum length of a definition line (including the name [e.g. BLMID]
  63. ; and the | delimiter) is 255 characters.  After all the symbols are
  64. ; resolved (e.g. {24} is replaced by an up arrow), the line must be 80
  65. ; characters or less, so that it can fit on the screen.
  66. ;
  67. ; The definition for each line begins immediately after the | delimiter.
  68. ; You will notice that in some cases, we used the symbol {32} (i.e. space)
  69. ; to ensure that the definitions line up nicely when a character was
  70. ; replaced by a space.  This makes it easier to visualize how the line
  71. ; will look after the symbols are resolved.
  72. ;
  73. ; Note that the [BOTTOM LINES] label must be present in order for these
  74. ; definitions to be recognized.
  75. ;
  76. [BOTTOM LINES]
  77. BLTOP | {32} {25}  {27} {26}         PgDn          End          AltS = Search          Esc = Quit
  78. BLMID | {24} {25}  {27} {26}   PgUp  PgDn    Home  End          AltS = Search          Esc = Quit
  79. BLEND | {24} {32}  {27} {26}   PgUp          Home               AltS = Search          Esc = Quit
  80. BLALL | (Entire file displayed)                                 AltS = Search          Esc = Quit
  81.